Executable Statements
Pascal
C/C++
w
x := y + z
x = y + z;
l
NOTE 1:
This is an instance of the C expression much
more flexible than its Pascal equivalent.
begin
x := y + z;
w := x
end
w
l
NOTE 2:
There is never a semicolon after the
terminating }, but the last statement inside the compound
statement does end with a semicolon
{
x = y + z;
w = x;
}
l